encoding/hex.dumper.used (field)

14 uses

	encoding/hex (current package)
		hex.go#L250: 	used       int  // number of bytes in the current line
		hex.go#L271: 		if h.used == 0 {
		hex.go#L289: 		if h.used == 7 {
		hex.go#L293: 		} else if h.used == 15 {
		hex.go#L305: 		h.rightChars[h.used] = toChar(data[i])
		hex.go#L306: 		h.used++
		hex.go#L308: 		if h.used == 16 {
		hex.go#L315: 			h.used = 0
		hex.go#L327: 	if h.used == 0 {
		hex.go#L335: 	nBytes := h.used
		hex.go#L336: 	for h.used < 16 {
		hex.go#L338: 		if h.used == 7 {
		hex.go#L340: 		} else if h.used == 15 {
		hex.go#L347: 		h.used++